Stonewick Platform - Deployed Successfully

Status: Application is running on Azure

Issue: Database connection or migration needed


Next Steps:

  1. Get SQL connection string:
    azd env get-values | Select-String "SQL"
  2. Add your local IP to SQL firewall:
    az sql server firewall-rule create --resource-group rg-stonewick-dev --server [SERVER_NAME] --name DevMachine --start-ip-address [YOUR_IP] --end-ip-address [YOUR_IP]
  3. Update local Admin API connection string in src/Stonewick.Admin.Api/appsettings.Development.json
  4. Run database migrations:
    cd src/Stonewick.Infrastructure; dotnet ef database update --startup-project ../Stonewick.Admin.Api
  5. Create first tenant using Admin API